import { Button } from '../../atoms'; import { ComponentProps } from 'react'; type Rule = true | string; export declare const GatedButton: ({ rules, ...props }: { rules: Rule[]; } & Pick & import("react").RefAttributes) => JSX.Element; export {};