import { ITheme, IStyle } from 'office-ui-fabric-react/lib/Styling';
import { IStyleFunctionOrObject } from 'office-ui-fabric-react/lib/Utilities';
export interface IDummyComponentProps {
    message: string;
    styles?: IStyleFunctionOrObject<IDummyComponentStyleProps, IDummyComponentStyles>;
    theme?: ITheme;
    className?: string;
}
export interface IDummyComponentStyleProps {
    theme: ITheme;
    className?: string;
}
export interface IDummyComponentStyles {
    root?: IStyle;
}
