@cfxlabsinc/b2b-services
    Preparing search index...
    type DateRangeFieldProps = {
        after: string | undefined;
        afterLabel?: string;
        before: string | undefined;
        beforeLabel?: string;
        errorMessage?: string;
        idPrefix: string;
        onChange: (
            next: { after: string | undefined; before: string | undefined },
        ) => void;
    }
    Index
    after: string | undefined
    afterLabel?: string
    before: string | undefined
    beforeLabel?: string
    errorMessage?: string

    Shown when the range is inverted.

    idPrefix: string

    Unique prefix for the input ids (e.g. "tx-created", "accounts").

    onChange: (
        next: { after: string | undefined; before: string | undefined },
    ) => void