import { FC } from 'react';
import { MaskProps } from './Mask';
export interface StripesProps extends MaskProps {
    /**
     * Unique id for the pattern. Set internally by the parent component.
     */
    id?: string;
    /**
     * Fill color of the stripe.
     */
    fill?: string;
}
export declare const Stripes: FC<StripesProps>;
