import React from 'react'; export type PathOptions = { iconPrimary: string; iconSecondary: string; [key: string]: string | number | boolean; }; export type SvgPath = { path: (options: PathOptions) => React.ReactNode; viewBox?: string; }; export declare const getPath: (name: string, props: PathOptions) => React.JSX.Element; export declare const getViewBox: (name: string) => "0 0 16 16" | "0 0 12 12" | "0 0 48 48" | "0 0 20 8" | "0 0 20 20" | "0 0 32 32" | "0 0 50 50" | "0 0 20 21" | "0 0 30 30" | "0 0 48 49" | "0 0 49 49" | "0 0 200 120" | "0 0 10 10" | "0 0 22 22" | "0 0 5 19" | "0 0 36 36" | "0 0 29 29" | "0 0 32 20" | "0 0 138 100" | "0 0 15 14" | "0 0 48 30" | "0 0 48 20" | "0 0 24 24" | "0 0 30 48" | "0 0 49 48" | "0 0 100 56" | "0 0 28 28" | "0 0 32 33" | "0 0 21 20" | "0 0 20 48" | "0 0 39 10" | "0 0 40 40" | "0 0 17 16" | "0 0 18 18" | "0 0 33 32" | "0 0 9 9" | "0 0 26 26" | "0 0 14 30" | "0 0 10 12" | "0 0 14 14" | "0 4 16 8" | "0 0 12 15" | "0 0 40 11" | "0 0 16 13" | "0 0 15 13.5" | "0 0 21 16" | "0 0 29 28" | "0 0 8 32" | "0 0 31 30" | "0 0 4 4" | "0 0 45 7" | "0 0 0 0"; export declare const getFill: (name: string) => "none" | undefined;