import * as React from 'react';
type Props = {
    children: React.ReactNode;
};
/**
 * Wrap an element in FocusOnce that would normally not receive tab focus.
 * This is useful for placing initial focus in a Modal or FocusLock.
 * */
export default function FocusOnce(props: Props): React.ReactElement;
export {};
