import type { ViewStyle } from '@cleartrip/ct-design-types'; import type { Theme } from '@cleartrip/ct-design-theme'; import { ActionButtonAlignmentType, ModalPlacementTypes, ModalSizeTypes } from './type'; export declare const getModalChildContainerStyle: ({ theme, size, blur, }: { theme: Theme; size: ModalSizeTypes; blur: boolean; }) => { width?: number | "100%"; height?: number | "100%"; flex?: number; maxHeight?: number | "100%" | "90%"; shadowColor?: string; shadowOffset?: { width: number; height: number; }; shadowOpacity?: number; borderRadius?: number; }; export declare const getModalPlacement: ({ placement }: { placement: ModalPlacementTypes; }) => ViewStyle; export declare const getActionButtonAlignment: ({ actionButtonAlignment, }: { actionButtonAlignment: ActionButtonAlignmentType; }) => { marginLeft: number; }; //# sourceMappingURL=style.native.d.ts.map