import { DeepPartial } from '../../types'; import { FocusEffectTheme } from './theme'; export interface FocusEffectProps { className?: string; theme?: DeepPartial; } declare const FocusEffect: ({ className, theme: customTheme }: FocusEffectProps) => import("react/jsx-runtime").JSX.Element; export default FocusEffect; //# sourceMappingURL=FocusEffect.d.ts.map