import { ComponentPropsWithoutRef, FC } from 'react';
type Props = Omit<ComponentPropsWithoutRef<"div">, "id"> & {
    id: string;
};
export declare const MaxSize: FC<Props>;
export {};
