export interface Panel {
    id?: string;
    active?: boolean;
    children?: any;
    onClick?: Function;
    onBlur?: Function;
    style?: object;
    color?: string;
    fix?: boolean;
}
export default function Panel(props: Panel): import("react").JSX.Element;
//# sourceMappingURL=Panel.d.ts.map