import React from 'react'; export interface StateDropDownProps { populatedValue: string; callback: (p: string) => void; id?: string; name?: string; error?: string; invalidStates?: Array; invalidStateErrorMessage?: string; theme?: string; selectTheme?: string; labelTheme?: string; } declare const StateDropDown: ({ populatedValue, callback, id, name, error, invalidStates, invalidStateErrorMessage, theme, selectTheme, labelTheme, }: StateDropDownProps) => React.JSX.Element; export default StateDropDown;