import { type CardAlignmentXType, type CardDirectionType, type CardSizesDictionaryType } from '../../types'; export interface UseCardStyleProps { artworkAlignmentX?: CardAlignmentXType; direction?: CardDirectionType; footerAlignmentX?: CardAlignmentXType; hasFilledHeight?: boolean; isBoxed?: boolean; isExpanded?: boolean; isHeading?: boolean; isSelectable?: boolean; size?: CardSizesDictionaryType; } export interface UseCardStylePropsReturn { classProps: { artwork: string; body: string; eyebrow: string; footer: string; link: string; logo: string; media: string; mediaCanvas: string; root: string; title: string; }; } export declare function useCardStyleProps(props?: UseCardStyleProps): UseCardStylePropsReturn;