import String from './string/string'; import Suffix from './suffix/suffix'; /** * remove {@param suffix} at the end of {@param value} */ export declare function RemoveSuffixParameters(value: string, suffix?: string): string; export declare type RemoveSuffixArgument = String & Partial; /** * remove {@param suffix} at the end of {@param value} */ export declare function RemoveSuffixParameter({ string, suffix }: RemoveSuffixArgument): string; declare namespace RemoveSuffix { const Parameters: typeof RemoveSuffixParameters; const Parameter: typeof RemoveSuffixParameter; } export default RemoveSuffix; //# sourceMappingURL=remove-suffix.d.ts.map