type Props = {
    icon?: React.ReactNode;
    children?: React.ReactNode;
    actions?: React.ReactNode;
    align?: "top" | "bottom";
    color?: "transparent" | "default";
    background?: string;
    backgroundScale?: "width" | "height";
    backgroundMaxSize?: string;
    fullHeight?: boolean;
    fullWidth?: boolean;
};
export declare const VuiPanel: ({ icon, children, actions, background, backgroundScale, align, color, backgroundMaxSize, fullHeight, fullWidth, ...rest }: Props) => import("react/jsx-runtime").JSX.Element;
export {};
