You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
710 B

import { DialogLoadingProps } from './Dialog.Loading';
import { DialogTitleProps } from './Dialog.Title';
import { DialogButtonProps } from './Dialog.Button';
import { DialogActionsProps } from './Dialog.Actions';
import { DialogProps } from './Dialog';
export declare const Dialog: import("..").RneFunctionComponent<DialogProps> & {
Loading: import("..").RneFunctionComponent<DialogLoadingProps>;
Title: import("..").RneFunctionComponent<DialogTitleProps>;
Actions: import("..").RneFunctionComponent<DialogActionsProps>;
Button: import("..").RneFunctionComponent<DialogButtonProps>;
};
export type { DialogProps, DialogLoadingProps, DialogButtonProps, DialogTitleProps, DialogActionsProps, };