import { default as React } from 'react'; declare const insetOptions: readonly ["top", "bottom", "left", "right", "all", "top-right-left", "bottom-left-right", "top-left", "top-right", "bottom-left", "bottom-right", "top-bottom", "left-right"]; export type IllustrationProps = React.ComponentPropsWithoutRef<'div'> & { /** The inset allows make the image bleed out to the edges */ inset?: (typeof insetOptions)[number]; rounded?: boolean; }; /** The illustration for the card */ export declare const Illustration: React.ForwardRefExoticComponent, HTMLDivElement>, "ref"> & { /** The inset allows make the image bleed out to the edges */ inset?: (typeof insetOptions)[number]; rounded?: boolean; } & React.RefAttributes>; export {};