import { SxProps } from '@mui/material';
import React, { SVGProps } from 'react';
export interface LogoProps extends SVGProps<any> {
    /** Any additional CSSProperties to pass to the component */
    sx?: SxProps;
    /** Data-qa tag to apply to the search bar and input element */
    'data-qa'?: string;
}
/**
 * Creates a logo using pre-defined Rijkswaterstaat SVG
 * @example
 * ```jsx
 *
 * <Logo height={125} width={314}/>
 *
 * ```
 */
export declare const Logo: React.MemoExoticComponent<(props: LogoProps) => JSX.Element>;
//# sourceMappingURL=index.d.ts.map