import React, { FC, FunctionComponent, ReactNode } from 'react'; import { SCardProps } from "../card/types"; export interface ContainerProps extends SCardProps { CustomContainer?: React.ComponentType | FunctionComponent; children?: ReactNode; hasBottomPadding?: boolean; isCard?: boolean; } declare const SDynamicContainer: FC; export default SDynamicContainer;