/** * Sample component * * Usage: *
 * // Individual module import
 * import { SampleModule } from 'patternfly-ng/sample';
 * // Or
 * import { SampleModule } from 'patternfly-ng';
 *
 * @NgModule({
 *   imports: [SampleModule,...]
 * })
 * export class AppModule(){}
 * 
*/ export declare class SampleComponent { /** * Set to true to disable */ disabled: Boolean; /** * The label */ label: string; /** * The default constructor */ constructor(); }