import { Ref, ReactNode } from "react"; import { View, ViewProps, ViewStyle } from "react-native"; import { WithTestID } from "src/utils/types"; import type { IOAppMargin } from "../../core"; type IOContentWrapperProps = WithTestID & { ref?: Ref; margin?: IOAppMargin; children: ReactNode; style?: Omit; }>; /** `ContentWrapper` is the main wrapper of the application. It automatically sets side margins, depending on the size value @param {IOContentWrapper} margin */ export declare const ContentWrapper: ({ margin, style, children, testID, ref, ...rest }: IOContentWrapperProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ContentWrapper.d.ts.map