type Props = {
    onClick?: () => void;
    children: React.ReactNode;
    color?: "neutral" | "primary" | "danger" | "success";
    type?: "default" | "modal";
    isHidden?: boolean;
};
export declare const VuiScreenBlock: ({ onClick, children, color, type, isHidden }: Props) => import("react/jsx-runtime").JSX.Element;
export {};
