import { PureComponent } from 'react';
import { MaskProps } from './Mask';
interface StripesProps extends MaskProps {
    id?: string;
    fill?: string;
}
export declare class Stripes extends PureComponent<StripesProps> {
    static defaultProps: Partial<StripesProps>;
    render(): JSX.Element;
}
export {};
