export declare class InputHeaderComponent { /** * This is an identifier for the label */ id: string; /** * The label which will be used above the input to describe the input. */ label: string; /** * The hint which will be used under the label to describe the input. */ hint: string; /** * The disabled option can be used to disable the component. */ disabled: boolean; }