import { default as React, ReactNode } from 'react'; import { ReactFCWithChildren } from '../../types/react'; import { DoubleButtonProps } from '../Button/DoubleButton'; import { UnderLineMiniButtonProps } from '../MiniButton/UnderLineMiniButton'; import { ButtonProps } from '../ui/button'; type LegacyModalProps = { className?: string; visible: boolean; zIndex?: number; onMaskClick?: () => void; /** @deprecated inert — the only functional `hasContentPadding` is on `LegacyModal.Body`. */ hasContentPadding?: boolean; children?: ReactNode; }; /** * @deprecated Modal은 deprecated됩니다. NewModal을 사용해주세요. * @see NewModal */ declare const LegacyModal: React.FC & { SingleButton: React.FC>; DoubleButton: React.FC>; Title: React.FC<{ title: ReactNode; subTitle?: ReactNode; }>; Body: ReactFCWithChildren<{ hasContentPadding?: boolean; }>; Comment: ReactFCWithChildren; UnderLineMiniButton: React.FC & { text: string; }>; }; export type { LegacyModalProps }; export { LegacyModal }; //# sourceMappingURL=index.d.ts.map