/** * This is a prop setting for omitProps helper */ export interface OmitPropsSetting { /** Name of prop on input object */ prop: string; /** Name that will be used for prop on output prefixed by data- for example name -> data-name */ name: string; /** Should we strip the prop from the input object? */ stripProp?: boolean; /** Default value for output prop */ defaultValue?: any; } /** * Omits props from an object based on settings */ export declare function omitProps(props: { [key: string]: any; }, settings: OmitPropsSetting[]): { [key: string]: any; }; //# sourceMappingURL=omitProps.d.ts.map