import type { AllHTMLAttributes, ReactNode } from 'react';
export type StatesProps = {
children?: ReactNode;
} & AllHTMLAttributes;
declare const States: ({ children, ...props }: StatesProps) => import("react/jsx-runtime").JSX.Element;
export default States;
//# sourceMappingURL=States.d.ts.map