import React from 'react';
export interface VisuallyHiddenProps {
    /** The content to be hidden visually */
    children?: React.ReactNode;
}
/**
 * @deprecated The VisuallyHidden component will be removed in the next
 * major version. Use the Text component instead. See the
 * Polaris component guide on how to use Text.
 *
 * https://polaris.shopify.com/components/text
 */
export declare function VisuallyHidden({ children }: VisuallyHiddenProps): JSX.Element;
//# sourceMappingURL=VisuallyHidden.d.ts.map
