///
import { ViewProps as RNViewProps } from 'react-native';
import { BoxProps } from '../Box';
export declare type LocalTemplateProps = {};
export declare type TemplateProps = BoxProps & RNViewProps & LocalTemplateProps;
export declare const Template: import("react").ForwardRefExoticComponent & RNViewProps & import("../Box").LocalBoxProps & {
active?: boolean;
focus?: boolean;
hover?: boolean;
hoveractive?: boolean;
} & import("react").RefAttributes> & {
displayName?: string;
useProps: (props?: Partial, config?: {
disableCSSProps?: string[];
themeKey?: string;
}) => any;
};