import { default as React } from 'react'; import { Card } from '../card'; export type BackProps = React.ComponentPropsWithoutRef & { /** * Additional CSS class name to apply to the outer wrapper element of the back side. * Use this for custom styling of the outer card container. */ wrapperClassName?: string; /** * Content to display on the back side of the card. * * Since Back is a Card component, you should use Card subcomponents inside it: * Card.Heading, Card.Description, Card.Content, Card.Illustration, etc. * * Note: The back content is automatically wrapped in a ScrollArea * to handle overflow content if it exceeds the dimensions established by the Front component. */ children?: React.ReactNode; /** * The accessible name for the back side content. * If not provided, it will use "Bakside innhold" as the default. */ 'aria-label'?: string; }; export declare const BackContext: React.Context>; export declare const Back: React.ForwardRefExoticComponent>;