/// import type { LocalizedContentConfig } from '../../../common/types'; export type LocalizedButtonProps = { localizedContentModalConfig: LocalizedContentConfig; state?: 'normal' | 'disabled' | undefined; }; declare function LocalizedButton({ localizedContentModalConfig, state }: LocalizedButtonProps): JSX.Element; export default LocalizedButton;