export interface Header {
    logo?: Logo | boolean;
    menu?: {
        active?: boolean;
        style?: object;
        children?: Menu[];
        onClick?: Function;
    };
    option?: {
        active?: boolean;
        style?: object;
        children?: any;
    };
    side?: Side;
    scale?: number;
    height?: number;
    color?: string;
    style?: object & {
        children?: object & {
            children?: object & {
                children?: object;
            };
        };
    };
}
export interface Logo {
    src?: string | Function | React.ReactElement;
    url?: string;
    width?: number;
    height?: number;
    title?: string;
    alt?: string;
    href?: string;
    style?: object;
}
export interface Menu {
    active?: boolean;
    name?: string;
    href?: string;
    onClick?: Function;
}
export interface Side {
    width?: number;
    active?: boolean;
    style?: object;
    children?: any;
}
export default function Header(props: Header): import("react").JSX.Element;
//# sourceMappingURL=Header.d.ts.map