/** * The Hidden decorator. * * The {@link DataGrid} does not show columns for properties tagged with {@link `Hidden`} decorator. * Fields in forms that render automatically * using the {@link `EditorComponent`} will render as ``. * * @param hide Optional, default is `true`. */ export declare function Hidden(hide?: boolean): (target: object, property: string | symbol) => void; export declare namespace Hidden { var IsHidden: (target: object, key: string, def?: boolean) => any; }