import * as React from 'react'; declare type CustomButtonLabelProps = { title: string; description: string; onButtonClicked: () => void; }; export declare const CustomButtonLabel: React.FC; export {};