import * as React from "react"; import * as react_jsx_runtime41 from "react/jsx-runtime"; //#region src/components/molecules/LangSwitch.d.ts interface LangOption { code: string; label: React.ReactNode; } interface LangSwitchProps { value: string; options: LangOption[]; onChange: (code: string) => void; size?: 'sm' | 'default'; } declare function LangSwitch({ value, options, onChange, size }: LangSwitchProps): react_jsx_runtime41.JSX.Element; //#endregion export { LangSwitch, LangSwitchProps }; //# sourceMappingURL=LangSwitch.d.ts.map