import React from 'react'; import { TextInput } from 'react-native'; export declare function AdminScroll({ children }: { readonly children: React.ReactNode; }): React.JSX.Element; export declare function AdminHeader(props: { readonly title: string; readonly description: string; }): React.JSX.Element; export declare function Metric(props: { readonly title: string; readonly value: string; }): React.JSX.Element; export declare function Field(props: { readonly label: string; readonly children: React.ReactNode; }): React.JSX.Element; export declare function Input(props: React.ComponentProps): React.JSX.Element; export declare function KeyValue(props: { readonly label: string; readonly value: string; }): React.JSX.Element; export declare const adminPageStyles: { grid: { flexDirection: "row"; flexWrap: "wrap"; gap: number; }; row: { gap: number; paddingVertical: number; }; }; //# sourceMappingURL=adminPagePrimitives.d.ts.map