import { ContentProps } from './expandable-card-content'; import { HeaderProps } from './expandable-card-header'; import { ItemProps } from './expandable-card-item'; import { LineProps } from './expandable-card-line'; import { RootProps } from './expandable-card-root'; import { SlotProps } from './expandable-card-slot'; import { HiddenContainerProps } from './expandable-card-hidden'; import { ButtonProps } from './expandable-card-button'; import { DescriptionProps } from './expandable-card-description'; import { PriceProps } from './expandable-card-price'; import { IndicatorProps } from './expandable-card-indicator'; export declare const ExpandableCard: import('react').ForwardRefExoticComponent> & { Item: import('react').ForwardRefExoticComponent, "ref"> & import('react').RefAttributes>; Line: import('react').ForwardRefExoticComponent>; Content: import('react').ForwardRefExoticComponent, "ref"> & import('react').RefAttributes>; Trigger: import('react').ForwardRefExoticComponent, "ref"> & import('react').RefAttributes>; Header: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref"> & import('react').RefAttributes>; Description: import('react').ForwardRefExoticComponent>; Price: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref"> & import('react').RefAttributes>; Slot: import('react').ForwardRefExoticComponent>; HiddenContainer: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref"> & import('react').RefAttributes>; Button: import('react').ForwardRefExoticComponent, "aria-label"> & import('../../utils/generate-styling/flex').FlexChildren & import('../../utils/generate-styling/grid').GridChildren & import('../../utils/generate-styling/position').PositionProps & import('../../utils/generate-styling/inset').InsetProps & import('../../utils/generate-styling/radius').RadiusProps & import('../../utils/generate-styling/margin').MarginProps & import('../../utils/generate-styling/padding').PaddingProps & import('../../utils/generate-styling/width').WidthProps & import('../../utils/generate-styling/height').HeightProps & import('../../utils/generate-styling/color').ColorProps & { display?: import('../../utils/generate-styling').DisplayChildren; } & { asChild?: boolean; loading?: boolean; fullWidth?: boolean; size?: import('../button/button').Size; variant?: import('../button/button').Variant; borderStyle?: "dashed" | "default"; } & { iconOnly: true; "aria-label": string; } & import('react').RefAttributes, "ref"> | Omit, "aria-label"> & import('../../utils/generate-styling/flex').FlexChildren & import('../../utils/generate-styling/grid').GridChildren & import('../../utils/generate-styling/position').PositionProps & import('../../utils/generate-styling/inset').InsetProps & import('../../utils/generate-styling/radius').RadiusProps & import('../../utils/generate-styling/margin').MarginProps & import('../../utils/generate-styling/padding').PaddingProps & import('../../utils/generate-styling/width').WidthProps & import('../../utils/generate-styling/height').HeightProps & import('../../utils/generate-styling/color').ColorProps & { display?: import('../../utils/generate-styling').DisplayChildren; } & { asChild?: boolean; loading?: boolean; fullWidth?: boolean; size?: import('../button/button').Size; variant?: import('../button/button').Variant; borderStyle?: "dashed" | "default"; } & { iconOnly?: false; "aria-label"?: string; } & import('react').RefAttributes, "ref">, "variant"> & { variant?: React.ComponentPropsWithoutRef> & { variants: readonly ["primary", "secondary", "destructive", "tertiary-purple", "text", "text-underline", "expressive", "primary-negative", "secondary-negative", "destructive-negative", "tertiary-purple-negative", "text-negative", "expressive-negative", "list-item"]; }>["variant"]; position?: "right" | "left"; } & import('react').RefAttributes>; Indicator: import('react').ForwardRefExoticComponent & import('react').RefAttributes>; }; export type ExpandableCardProps = { Root: RootProps; Item: ItemProps; Line: LineProps; Content: ContentProps; Trigger: ContentProps; Header: HeaderProps; Description: DescriptionProps; Price: PriceProps; Slot: SlotProps; HiddenContainer: HiddenContainerProps; Button: ButtonProps; Indicator: IndicatorProps; };