import type { ImageBackgroundProps } from 'react-native'; export interface LayoutTypes { padding?: number; isCentered?: boolean; isJustify?: boolean; backgroundColor?: string; isSafeArea?: boolean; children: React.ReactNode; isImageBackground?: boolean; backgroundImage?: ImageBackgroundProps['source']; overlayColor?: string; /** * Add a blur radius to the image background. This is only available on iOS and Android. * @platform ios android * @default 0 * @example * * Blurred Background * */ imageBackgroundBlurRadius?: number; } //# sourceMappingURL=Layout.types.d.ts.map