export declare type RequiredPropsErrorProps = { missingProps: { attribute: string; value: string | boolean | number; }[] | false; heading?: string; subheading?: string; description?: string; }; export declare function RequiredPropsError({ missingProps, heading, subheading, description, }: RequiredPropsErrorProps, children: any): any;