import { ReactNode } from "react"; import { PressableProps, ViewProps } from "react-native"; type ModuleStaticProps = Pick & (ModuleStaticSingleBlockProps | ModuleStaticMultipleBlockProps); type ModuleStaticMultipleBlockProps = { startBlock: ReactNode; endBlock?: ReactNode; children?: never; disabled?: PressableProps["disabled"]; }; type ModuleStaticSingleBlockProps = { startBlock?: never; endBlock?: never; children: ReactNode; disabled?: PressableProps["disabled"]; }; export declare const ModuleStatic: ({ disabled, startBlock, endBlock, children, accessible, accessibilityLabel, accessibilityState }: ModuleStaticProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ModuleStatic.d.ts.map