export interface Props {
    borderColor?: string;
    children?: any;
    compact?: boolean;
    footer?: any;
    head?: any;
    marginTop?: number;
    paddingY?: number;
}
declare const View: ({ borderColor, children, compact, footer, head, marginTop, paddingY, }: Props) => import("@roots/bud-support/jsx-runtime").JSX.Element;
export default View;
