import React, { ReactNode } from 'react';
import './Box.scss';
declare type BoxProps = {
    heading: string;
    loading?: boolean;
    action?: ReactNode;
    className?: string;
    style?: React.CSSProperties;
    id?: string;
    'data-se'?: string;
};
export declare const Box: React.FunctionComponent<BoxProps>;
export {};
