declare interface ArticleVariant { } declare type ArticleVariantMap = { [key in keyof ArticleVariant]: Array; }; export declare type ArticleVariantProps = Partial; export declare const articleVariantMap: ArticleVariantMap; export declare const article: (( props?: ArticleVariantProps, ) => string) & { splitVariantProps: ( props: T, ) => [ArticleVariantProps, Omit]; }