import { Component, JSXElement } from 'solid-js';
interface CardAction {
    label: string;
    onClick: () => void;
    icon?: JSXElement;
}
export interface FillCardProps {
    background?: string;
    color?: string;
    label?: string;
    title?: string;
    small?: boolean;
    actions?: CardAction[];
    children: JSXElement;
}
export declare const FillCard: Component<FillCardProps>;
export {};
