declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            '& .MuiCardContent-root': {
                padding: any;
            };
            '& .SCIncubatorListWidget-header': {
                display: string;
                alignItems: string;
            };
            '& .SCIncubatorListWidget-actions': {
                display: string;
                justifyContent: string;
            };
        };
        dialogRoot: ({ theme }: any) => {};
        skeletonRoot: ({ theme }: any) => {};
        createDialogRoot: ({ theme }: any) => {
            [x: number]: {
                minWidth: number;
            };
            margin: number;
            '& .SCIncubatorListWidget-intro': {
                whiteSpace: string;
            };
            '& .SCIncubatorListWidget-form': {
                marginTop: any;
                marginBottom: any;
            };
            '& .SCIncubatorListWidget-name': {
                '& .MuiInputBase-root': {
                    height: string;
                };
            };
            '& .SCIncubatorListWidget-submitted-message': {
                padding: any;
                borderRadius: string;
                backgroundColor: string;
            };
        };
    };
};
export default Component;
