import { Frame, Icon } from '@judo/model-api'; import { ReactNode } from 'react'; export interface FrameRendererProps { frame: Frame; children: ReactNode; /** Optional label for the card header */ label?: string; /** Optional icon for the card header */ icon?: Icon; } /** * Renderer for Frame (card/panel) styling. * Renders a Card with CardContent and optional header containing icon and label. * Matches the template's Card/CardContent pattern with Grid-based header layout. */ export declare function FrameRenderer({ frame, children, label, icon }: FrameRendererProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=FrameRenderer.d.ts.map