declare interface SidePanelVariant { /** * @default "medium" */ size: "small" | "medium" | "large"; } declare type SidePanelVariantMap = { [key in keyof SidePanelVariant]: Array; }; export declare type SidePanelVariantProps = Partial; export declare type SidePanelSlotName = "positioner" | "backdrop" | "content" | "header" | "body" | "footer" | "title" | "description" | "closeButton"; export declare const sidePanelVariantMap: SidePanelVariantMap; export declare const sidePanel: (( props?: SidePanelVariantProps, ) => Record) & { splitVariantProps: ( props: T, ) => [SidePanelVariantProps, Omit]; }