We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Southclaws/storyden'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/* eslint-disable */
import type { ConditionalValue } from '../types/index';
import type { DistributiveOmit, Pretty } from '../types/system-types';
interface HeadingInputVariant {
}
type HeadingInputVariantMap = {
[key in keyof HeadingInputVariant]: Array<HeadingInputVariant[key]>
}
export type HeadingInputVariantProps = {
[key in keyof HeadingInputVariant]?: ConditionalValue<HeadingInputVariant[key]> | undefined
}
export interface HeadingInputRecipe {
__type: HeadingInputVariantProps
(props?: HeadingInputVariantProps): string
raw: (props?: HeadingInputVariantProps) => HeadingInputVariantProps
variantMap: HeadingInputVariantMap
variantKeys: Array<keyof HeadingInputVariant>
splitVariantProps<Props extends HeadingInputVariantProps>(props: Props): [HeadingInputVariantProps, Pretty<DistributiveOmit<Props, keyof HeadingInputVariantProps>>]
getVariantProps: (props?: HeadingInputVariantProps) => HeadingInputVariantProps
}
export declare const headingInput: HeadingInputRecipe