import { default as React } from 'react'; import { Card } from '../card'; export type FrontProps = React.ComponentPropsWithoutRef & { /** * Content to display on the front side of the card. * * Since Front is a Card component, you should use Card subcomponents inside it: * Card.Heading, Card.Description, Card.Content, Card.Illustration, etc. * * The Front component determines the overall dimensions of the FlipCard. * Both front and back sides will have the same dimensions. */ children?: React.ReactNode; /** * The accessible name for the front side content. * If not provided, it will use "Forside innhold" as the default. */ 'aria-label'?: string; }; export declare const Front: React.ForwardRefExoticComponent>;