import { CardActionsProps, CardContentProps, CardHeaderProps, CardProps } from './types'; export declare function styleCard(props: CardProps): { card: string[]; warpX: string; warpY: string; }; export declare function styleCardContent(props: CardContentProps): string[]; export declare function styleCardHeader(props: CardHeaderProps): { main: string[]; text: string[]; }; export declare function styleCardActions(props: CardActionsProps): string[];