import { YearSelectorProps } from "./YearSelector";
export interface YearSelectorExportProps extends Omit<YearSelectorProps, "type" | "setShowSelectorTwo" | "setSelectorTwoProps" | "showSelectorTwo" | "yearSelectorCount"> {
    yearSelectorCount?: number;
}
declare const YearSelectorExport: (props: YearSelectorExportProps) => import("solid-js").JSX.Element;
export default YearSelectorExport;
