import React, { type JSX } from 'react'; import { ScrollView } from 'react-native'; import type { PaddingProps } from '@coinbase/cds-common/types/SpacingProps'; import type { BoxBaseProps, BoxProps } from '../layout/Box'; type ExampleRenderChildren = () => NonNullable; export type ExampleProps = { children: ExampleRenderChildren | React.ReactNode[] | React.ReactNode; inline?: boolean; title?: string; hideDivider?: boolean; titlePadding?: PaddingProps; } & Omit; export declare const Example: ({ children, inline, title, titlePadding, hideDivider, ...props }: ExampleProps) => import('react/jsx-runtime').JSX.Element; export declare const ExampleScreen: { ({ ref, children, ...boxProps }: React.PropsWithChildren & { ref?: React.Ref; }): import('react/jsx-runtime').JSX.Element; displayName: string; }; export {}; //# sourceMappingURL=ExampleScreen.d.ts.map